home *** CD-ROM | disk | FTP | other *** search
/ Risc World 3 / Risc World 3.iso / SOFTWARE / ISSUE2 / PD / VINCE / !ViNCe / c / antitwit next >
Text File  |  2002-03-10  |  206b  |  15 lines

  1. #include <stdio.h>
  2. #include "kernel.h"
  3.  
  4.  
  5. void antitwitter(int x0, int y0, int w, int h) {
  6.  
  7.   _kernel_swi_regs r;
  8.  
  9.   r.r[0] = x0;
  10.   r.r[1] = y0;
  11.   r.r[2] = w;
  12.   r.r[3] = h;
  13.   _kernel_swi(0xa38c0, &r, &r);
  14. }
  15.